home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr53 / pctv4n_1.zip / DATASRC.H < prev    next >
Text File  |  1993-06-10  |  702b  |  28 lines

  1. /**************************************************
  2. * FILE NAME:  datasrc.h    TITLE:  source info
  3. *
  4. * AUTHOR: Ken North     Resource Group, Inc.    
  5. *                       2604B El Camino Real, #351
  6. * copyright(c)1992      Carlsbad, CA 92008
  7. ***************************************************
  8. * SYNOPSIS: 
  9. *    information which describes each data source
  10. ***************************************************/
  11.  
  12. #ifndef __DATASRC_H
  13. #define __DATASRC_H
  14.  
  15. typedef struct DataSource 
  16. {
  17.     char    DBDriver[21];/* SQL-specific driver */
  18.     char    DBUserid[31];
  19.     char    DBServer[31];
  20.     char    DBDataBase[31];    /* data source name */
  21.     char    DBDictPath[80];
  22.     char    DBDataPath[80];
  23. } * DATASRC;
  24.  
  25. #endif
  26.  
  27.  
  28.